home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / gcc / ixemsrc.readme < prev    next >
Text File  |  1996-10-11  |  61KB  |  1,199 lines

  1. Short:    IXemul 44.0 - full source code
  2. Author:   various
  3. Uploader: fnf@ninemoons.com
  4. Type:     dev/gcc
  5.  
  6. This is ixemul.library release 44.0, a shared library that makes it possible
  7. to compile and run most Unix programs under AmigaOS with almost no changes.
  8. IXemul is part of the ADE (Amiga Developer's Environment), a community
  9. effort to produce a complete development environment that is stable,
  10. available in source, and completely self-hosting.  See the ADE readme file
  11. at ftp://ftp.ninemoons.com/pub/ade/README for more details about ADE.
  12.  
  13. As of version 43.1, IXemul includes Jeff Shepherd's networking code.  If
  14. ixnet.library (included) is installed then ixemul.library will use the
  15. networking functions from the ixnet.library, instead of the default dummy
  16. implementation.  Ixnet.library works with AS225 and with AmiTCP.  It
  17. supports both clients and daemons.  A program that uses networking functions
  18. is completely shielded from the AS225 and AmiTCP differences by
  19. ixnet.library, which will take care of all the details for you. That means
  20. that there is no longer any need to provide two different binaries, one for
  21. AS225 and one for AmiTCP.  Furthermore, it is relatively easy to add support
  22. for other network packages.
  23.  
  24. The following are the changes made since the 43.1 release:
  25.  
  26.     Kriton Kyrimis updated ixprefs.
  27.     
  28.     David Zaroski updated ixtrace.
  29.     
  30.     Fixed link count for directories. Thanks to Norbert Pueschel.
  31.     
  32.     umask implemented for for open() and mkdir(). Thanks to Norbert
  33.     Pueschel.
  34.     
  35.     Added muFIBB_SET_GID, which will be implemented in the next
  36.     version of MultiUser. The old way of handling setgid was
  37.     confusing and even potentially dangerous.  Thanks to Norbert
  38.     Pueschel.
  39.     
  40.     Added the translation unix sticky bit -> AmigaDOS h bit. This one
  41.     is more for aestaethical reasons, as the h bit is no longer
  42.     supported in 3.x.  Thanks to Norbert Pueschel.
  43.     
  44.     Added a field 'void *u_user;' near the beginning of the user
  45.     struct which everybody is free to (ab)use. It can be handy to
  46.     store task private data in the user struct, at least, I had to
  47.     use it recently.
  48.     
  49.     Added an ix_amiga.h header, which will contain all amiga specific
  50.     functions and macros in ixemul.library and libc.a, together with
  51.     a description.
  52.     
  53.     Profiling has been enhanced. Ixprefs adds a new profiling
  54.     preference: either take samples only while your program is
  55.     running and the PC is within your program, or take samples while
  56.     your program is running and if the PC is outside your program
  57.     code (e.g. in ixemul or in intuition.library), use the last
  58.     function your program entered before calling ixemul or whatever,
  59.     or always take samples, even if other programs are running.
  60.     Again, the last recorded function gets the hit in those cases.
  61.     
  62.     An array of 100 longs to store the A4 register of shared
  63.     libraries has been added to the user struct. This array can be
  64.     easily increased in future releases, should the need arise. The
  65.     first 20 slots are for your own free use, the other slots should
  66.     be registered. See the file REGISTRY in the ixemul source
  67.     distribution for more details.
  68.     
  69.     Fixed yet another path bug. Running a shell script that's placed
  70.     somewhere in your PATH from 'make' failed, unless the filename of
  71.     the script was absolute.
  72.     
  73.     Added vfork_setup_child to libc.a. This is a wrapper intended to
  74.     make life just a little bit easier for those who need to use the
  75.     vfork2()/vfork_resume() trick. It replaces the old
  76.     'ix_resident()/ix_get_vars2()' pair.
  77.     
  78.     Fixed more problems with the routines that start a shell
  79.     script. This time problems with symbolic links have been fixed.
  80.     
  81.     Fixed problems when parsing a pathname of a shell script,
  82.     preventing the execution of that script.
  83.     
  84.     Replaced the stdio-sources by the NetBSD 44.0 versions, which
  85.     incidentally fixed the broken fgetpos function. This change also
  86.     adds printf() and scanf() support for the 'long long' datatype.
  87.     
  88.     Added support for the O_CASE open() flag: this will open an
  89.     existing file only if the filenames match using a case-sensitive
  90.     comparison.
  91.     
  92.     fstat() didn't compensate the file time for the current timezone
  93.     offset.
  94.     
  95.     Ixemul now supports the 68010 CPU. Thanks to Pascal Eeftinck for
  96.     pointing out that the 68010 uses a 68020-like stackframe.
  97.     
  98.     Build the version.[ch] files in the build directory instead of in
  99.     the source directory.
  100.     
  101.     Fixed fchdir().
  102.     
  103.     Changed the machine name as returned by uname() to "m68k". Thanks
  104.     to Lars Hecking for this.
  105.     
  106.     O_ASYNC I/O is now partially supported: select() will test for
  107.     this situation.
  108.     
  109.     /dev/tty is now translated to console:.
  110.     
  111.     Implemented pseudo-terminals support using the FIFO device.
  112.     
  113.     Many, mostly small, changes to become more NetBSD
  114.     compatible. Where possible, I've replaced the old sources with
  115.     the NetBSD 1.1 sources.
  116.     
  117.     The select() function has been improved: it is now much faster
  118.     and works much better.
  119.     
  120.     Using F_SETFL with fcntl() failed if the file wasn't a regular
  121.     file. It now also works for pipes and sockets.
  122.     
  123.     Requesters that are from ixemul.library or ixnet.library now have
  124.     the name of the library as their title, so that you can see that
  125.     they are from the library, and not from the application. Thanks
  126.     to Udo Schnurpfeil for suggesting this.
  127.     
  128.     The tty database functions unfortunately slipped through and
  129.     weren't included with 43.1. They are back in 44.0.
  130.     
  131.     Implemented mmap() and friends. Of course, any mmap feature that
  132.     actually requires a MMU will return an error. But if mmap() is
  133.     used to load a file into memory, then it works fine.
  134.     
  135.     Applied patch from Kamil Iskra to improve ixemul stack extension
  136.     handling.
  137.  
  138.  
  139. The net ixemul library distribution consists of several archives:
  140.  
  141.   ixemul-bin.lha    Utils for gnu/bin, like ixtrace and ixconfig
  142.  
  143.   ixemul-sdk.lha    Files needed to build applications that use
  144.             ixemul.library.
  145.  
  146.   ixemul-doc.lha    Various documentation, such as this file
  147.  
  148.   ixemul-src.lha    Complete source code for ixemul library
  149.  
  150.   ixemul-tz.lha        Pieces for doing TZ (timezone) management
  151.  
  152.   ixemul-CCCF.lha    Specific flavors of the library, where 'CCC'
  153.             is one of 000, 020, 030, or 040, for 68000, 68020,
  154.             68030, and 68040 respectively, and 'F' is either
  155.             'f', 's', or 't' for FPU support or soft floating
  156.             point or a "trace" version (also soft float)
  157.             respectively.
  158.  
  159. For further information consult the NEWS, INSTALL, README and TODO files in
  160. the documentation archive.
  161.  
  162. -Fred Fish  (fnf@ninemoons.com)
  163.  
  164.  
  165. ============================= Archive contents =============================
  166.  
  167. Original  Packed Ratio    Date     Time    Name
  168. -------- ------- ----- --------- --------  -------------
  169.      332     219 34.0% 13-Aug-96 20:47:26 +BUGS
  170.    32094    9508 70.3% 13-Aug-96 22:06:04 +configure
  171.      377     193 48.8% 18-May-96 15:20:40 +configure.in
  172.    17982    6993 61.1% 23-Dec-95 00:02:58 +COPYING
  173.    25265    9285 63.2% 23-Dec-95 00:02:58 +COPYING.LIB
  174.     1925     981 49.0% 13-Aug-96 20:47:28 +COPYRIGHT
  175.     5381    2222 58.7% 18-May-96 15:21:46 +bt_close.c
  176.     5569    1853 66.7% 18-May-96 15:21:48 +bt_conv.c
  177.     8898    3086 65.3% 18-May-96 15:21:48 +bt_debug.c
  178.     9526    3693 61.2% 18-May-96 15:21:50 +bt_delete.c
  179.     6763    2877 57.4% 18-May-96 15:21:50 +bt_get.c
  180.    11331    4536 59.9% 18-May-96 15:21:52 +bt_open.c
  181.     6119    2516 58.8% 18-May-96 15:21:54 +bt_overflow.c
  182.     3058    1521 50.2% 18-May-96 15:21:54 +bt_page.c
  183.     8671    3394 60.8% 18-May-96 15:21:54 +bt_put.c
  184.     6494    2477 61.8% 18-May-96 15:21:56 +bt_search.c
  185.     9980    3419 65.7% 18-May-96 15:21:56 +bt_seq.c
  186.    22387    7162 68.0% 18-May-96 15:21:58 +bt_split.c
  187.     3477    1708 50.8% 18-May-96 15:21:58 +bt_stack.c
  188.     6762    2757 59.2% 18-May-96 15:22:00 +bt_utils.c
  189.    13468    4849 63.9% 18-May-96 15:22:00 +btree.h
  190.     3324    1365 58.9% 18-May-96 15:22:02 +extern.h
  191.     3388    1597 52.8% 18-May-96 15:22:04 +db.c
  192.     3340    1410 57.7% 18-May-96 15:22:08 +extern.h
  193.    24260    7670 68.3% 18-May-96 15:22:08 +hash.c
  194.    10278    3863 62.4% 18-May-96 15:22:10 +hash.h
  195.    16509    5347 67.6% 18-May-96 15:22:12 +hash_bigkey.c
  196.     9304    3623 61.0% 18-May-96 15:22:12 +hash_buf.c
  197.     5431    2147 60.4% 18-May-96 15:22:14 +hash_func.c
  198.     2424    1230 49.2% 18-May-96 15:22:14 +hash_log2.c
  199.    23626    7770 67.1% 18-May-96 15:22:16 +hash_page.c
  200.     3301    1598 51.5% 18-May-96 15:22:16 +hsearch.c
  201.     4493    1865 58.4% 18-May-96 15:22:16 +ndbm.c
  202.     3688    1765 52.1% 18-May-96 15:22:18 +page.h
  203.     2681    1229 54.1% 18-May-96 15:22:06 +README
  204.     2268    1174 48.2% 18-May-96 15:22:18 +search.h
  205.     1221     561 54.0% 18-May-96 15:21:44 +Makefile.in
  206.    11837    4084 65.4% 18-May-96 15:22:22 +mpool.c
  207.      223     183 17.9% 18-May-96 15:22:22 +README
  208.     2767    1204 56.4% 18-May-96 15:22:24 +extern.h
  209.     4642    1983 57.2% 13-Aug-96 20:47:52 +rec_close.c
  210.     5646    2513 55.4% 18-May-96 15:22:26 +rec_delete.c
  211.     7142    2420 66.1% 18-May-96 15:22:28 +rec_get.c
  212.     6696    2906 56.6% 13-Aug-96 20:47:54 +rec_open.c
  213.     6717    2817 58.0% 18-May-96 15:22:28 +rec_put.c
  214.     4123    1891 54.1% 18-May-96 15:22:30 +rec_search.c
  215.     3977    1851 53.4% 18-May-96 15:22:30 +rec_seq.c
  216.     3994    1859 53.4% 18-May-96 15:22:32 +rec_utils.c
  217.     2051    1068 47.9% 18-May-96 15:22:32 +recno.h
  218.     3893    1937 50.2% 18-May-96 15:21:44 +VERSION
  219.        0       0  0.0% 04-Sep-96 16:55:10 +
  220.     1599     877 45.1% 08-May-96 23:21:58 +alarm.c
  221.    12920    3123 75.8% 13-Aug-96 20:47:58 +arith.c
  222.     1709     937 45.1% 13-Aug-96 20:48:00 +clock.c
  223.     2642     621 76.4% 13-Aug-96 20:12:04 +common.h
  224.     1856     746 59.8% 08-May-96 23:22:00 +crypt.c
  225.     2887    1020 64.6% 08-May-96 23:22:02 +ctype_.c
  226.     2293    1182 48.4% 08-May-96 23:22:02 +cuserid.c
  227.     1260     728 42.2% 08-May-96 23:22:04 +difftime.c
  228.     6246    2741 56.1% 08-May-96 23:22:04 +errlst.c
  229.     4145    1831 55.8% 18-May-96 15:22:36 +fnmatch.c
  230.     2816    1333 52.6% 08-May-96 23:22:08 +getmntinfo.c
  231.     4787    1989 58.4% 08-May-96 23:22:10 +getwd.c
  232.    21167    7260 65.7% 13-Aug-96 20:48:00 +glob.c
  233.     6692    2643 60.5% 18-May-96 15:22:36 +inet_network.c
  234.     1345     727 45.9% 23-Dec-95 00:04:02 +insque.c
  235.     2609    1030 60.5% 13-Aug-96 20:48:02 +isctype.c
  236.     2194    1139 48.0% 23-Dec-95 00:04:00 +isinf.c
  237.     2260    1184 47.6% 23-Dec-95 00:04:00 +isnan.c
  238.      552     297 46.1% 13-Aug-96 20:12:00 +localeconv.c
  239.     1219     607 50.2% 13-Aug-96 20:47:56 +Makefile.in
  240.     1297     752 42.0% 08-May-96 23:22:16 +pause.c
  241.     1615     875 45.8% 18-Aug-96 08:26:32 +psignal.c
  242.     2085    1087 47.8% 08-May-96 23:22:18 +raise.c
  243.    13145    4904 62.6% 08-May-96 23:22:18 +random.c
  244.     1311     715 45.4% 23-Dec-95 00:04:02 +remque.c
  245.     5045    2079 58.7% 08-May-96 23:22:22 +setjmp.c
  246.     1476     845 42.7% 08-May-96 23:22:22 +setjmperr.c
  247.     2402    1213 49.5% 13-Aug-96 20:12:00 +setlocale.c
  248.     1611     882 45.2% 08-May-96 23:22:24 +siginterrupt.c
  249.     2359    1172 50.3% 18-Aug-96 08:26:32 +siglist.c
  250.     1479     848 42.6% 08-May-96 23:22:24 +signal.c
  251.     1707     825 51.6% 08-May-96 23:22:28 +sigsetops.c
  252.     2597    1220 53.0% 08-May-96 23:22:28 +sleep.c
  253.     5079    2079 59.0% 13-Aug-96 20:48:06 +termios.c
  254.     1377     796 42.1% 08-May-96 23:22:30 +time.c
  255.     2774    1348 51.4% 13-Aug-96 20:48:08 +times.c
  256.     3804    1628 57.2% 23-Dec-95 00:04:02 +types.h
  257.     1828     976 46.6% 08-May-96 23:22:34 +ualarm.c
  258.     1708     840 50.8% 13-Aug-96 20:48:08 +uname.c
  259.     5028    1821 63.7% 08-May-96 23:22:36 +unvis.c
  260.     2711    1209 55.4% 08-May-96 23:22:36 +usleep.c
  261.     3616    1464 59.5% 08-May-96 23:22:38 +vis.c
  262.     2199    1130 48.6% 08-May-96 23:22:38 +wait.c
  263.     2218    1134 48.8% 08-May-96 23:22:40 +wait3.c
  264.     2221    1130 49.1% 08-May-96 23:22:42 +waitpid.c
  265.     5327    1503 71.7% 08-May-96 23:22:50 +gen_glue.c
  266.     1596     720 54.8% 08-May-96 23:22:48 +Makefile.in
  267.     3611    1621 55.1% 08-May-96 23:22:52 +a.out.h
  268.     3718    1564 57.9% 26-Jan-96 16:55:50 +socketbasetags.h
  269.     1675     800 52.2% 26-Jan-96 16:55:52 +usergroup.h
  270.     2588    1288 50.2% 23-Dec-95 00:02:58 +ar.h
  271.     3646    1623 55.4% 23-Dec-95 00:03:04 +ftp.h
  272.     2416    1194 50.5% 18-May-96 15:23:06 +inet.h
  273.     8577    3301 61.5% 18-May-96 15:23:08 +nameser.h
  274.    10547    3958 62.4% 13-Aug-96 20:05:00 +telnet.h
  275.     2960    1439 51.3% 23-Dec-95 00:03:04 +tftp.h
  276.     1387     447 67.7% 23-Dec-95 00:02:58 +assert.h
  277.     4729    1666 64.7% 23-Dec-95 00:02:58 +bitstring.h
  278.       20      20  0.0% 23-Dec-95 00:02:58 +bstring.h
  279.     4174    1646 60.5% 13-Aug-96 20:48:16 +ctype.h
  280.     8215    3007 63.3% 18-May-96 15:22:42 +db.h
  281.     3984    1868 53.1% 13-Aug-96 20:48:18 +dirent.h
  282.     3185    1391 56.3% 18-May-96 15:22:42 +err.h
  283.     6766    2764 59.1% 19-Aug-96 10:26:44 +errno.h
  284.       23      23  0.0% 23-Dec-95 00:03:00 +fcntl.h
  285.       70      68  2.8% 23-Dec-95 00:03:00 +float.h
  286.     2283    1184 48.1% 18-May-96 15:22:44 +fnmatch.h
  287.     5392    2314 57.0% 13-Aug-96 20:04:06 +fts.h
  288.     4052    1877 53.6% 13-Aug-96 20:04:06 +glob.h
  289.     2235    1126 49.6% 23-Dec-95 00:03:00 +glue.h
  290.     7234    2497 65.4% 08-May-96 23:22:58 +gnu.a.out.h
  291.     2456    1196 51.3% 23-Dec-95 00:03:00 +grp.h
  292.     1739     699 59.8% 23-Dec-95 00:03:00 +gvarargs.h
  293.     1519     755 50.2% 26-Jan-96 16:55:42 +inetd.h
  294.      560     287 48.7% 23-Dec-95 00:03:00 +init.h
  295.     2016     903 55.2% 13-Aug-96 20:04:54 +ix_amiga.h
  296.     2981    1360 54.3% 13-Aug-96 20:04:14 +limits.h
  297.     2750    1350 50.9% 18-May-96 15:22:44 +locale.h
  298.     2879    1304 54.7% 13-Aug-96 20:07:18 +asm.h
  299.     2727    1342 50.7% 13-Aug-96 20:07:18 +signal.h
  300.     2641    1291 51.1% 13-Aug-96 20:07:18 +trap.h
  301.     3403    1685 50.4% 18-May-96 15:23:10 +ansi.h
  302.      137     121 11.6% 13-Aug-96 20:05:22 +asm.h
  303.      857     349 59.2% 18-May-96 15:23:12 +cdefs.h
  304.     6940    3106 55.2% 08-May-96 23:23:10 +cpu.h
  305.     2887    1352 53.1% 08-May-96 23:23:12 +endian.h
  306.     3641    1590 56.3% 23-Dec-95 00:03:04 +float.h
  307.     4294    1697 60.4% 23-Dec-95 00:03:04 +frame.h
  308.     3729    1525 59.1% 13-Aug-96 22:02:58 +limits.h
  309.     2340    1164 50.2% 23-Dec-95 00:03:04 +mtpr.h
  310.     7547    3078 59.2% 13-Aug-96 20:48:36 +param.h
  311.     2893    1456 49.6% 23-Dec-95 00:03:04 +pcb.h
  312.     4005    1875 53.1% 08-May-96 23:23:14 +pmap.h
  313.     2206    1137 48.4% 23-Dec-95 00:03:04 +proc.h
  314.     3121    1344 56.9% 23-Dec-95 00:03:04 +psl.h
  315.      537     301 43.9% 28-Jan-96 13:24:20 +reg.h
  316.      149     126 15.4% 13-Aug-96 20:05:22 +signal.h
  317.     2568    1260 50.9% 13-Aug-96 20:48:38 +stdarg.h
  318.      258     200 22.4% 13-Aug-96 20:05:16 +trap.h
  319.     2708    1343 50.4% 18-May-96 15:23:14 +types.h
  320.     9082    4055 55.3% 23-Dec-95 00:03:04 +vmparam.h
  321.       81      81  0.0% 13-Aug-96 20:04:54 +malloc.h
  322.     9530    1903 80.0% 23-Dec-95 00:03:00 +math-68881.h
  323.     4553    1850 59.3% 13-Aug-96 20:48:20 +math.h
  324.     1882     951 49.4% 23-Dec-95 00:03:00 +memory.h
  325.     5285    2090 60.4% 18-May-96 15:22:46 +mpool.h
  326.     2939    1454 50.5% 18-May-96 15:22:46 +ndbm.h
  327.       62      58  6.4% 23-Dec-95 00:03:00 +ndir.h
  328.     1418     775 45.3% 08-May-96 23:23:18 +af.h
  329.     8419    3313 60.6% 13-Aug-96 20:48:44 +bpf.h
  330.     3941    1839 53.3% 23-Dec-95 00:03:06 +bpfdesc.h
  331.     7861    3091 60.6% 08-May-96 23:23:20 +if.h
  332.     2495    1163 53.3% 23-Dec-95 00:03:06 +if_arp.h
  333.     3495    1755 49.7% 08-May-96 23:23:20 +if_dl.h
  334.     2834    1314 53.6% 23-Dec-95 00:03:06 +if_llc.h
  335.     3368    1625 51.7% 23-Dec-95 00:03:06 +if_slvar.h
  336.     2961    1373 53.6% 23-Dec-95 00:03:06 +if_types.h
  337.     1835     961 47.6% 08-May-96 23:23:22 +netisr.h
  338.     4434    1900 57.1% 08-May-96 23:23:24 +radix.h
  339.     2194    1064 51.5% 08-May-96 23:23:24 +raw_cb.h
  340.    10673    4006 62.4% 18-May-96 15:23:16 +route.h
  341.     6740    2968 55.9% 23-Dec-95 00:03:06 +slcompress.h
  342.     4880    2014 58.7% 18-May-96 15:22:48 +netdb.h
  343.     2604    1236 52.5% 18-May-96 15:22:48 +netgroup.h
  344.     1610     836 48.0% 08-May-96 23:23:30 +icmp_var.h
  345.     2916    1339 54.0% 08-May-96 23:23:30 +if_ether.h
  346.     9067    3434 62.1% 18-May-96 15:23:18 +in.h
  347.     1892     956 49.4% 08-May-96 23:23:32 +in_pcb.h
  348.     1462     806 44.8% 08-May-96 23:23:34 +in_systm.h
  349.     2086    1033 50.4% 08-May-96 23:23:34 +in_var.h
  350.     5898    2528 57.1% 13-Aug-96 20:05:44 +ip.h
  351.     4307    1754 59.2% 23-Dec-95 00:03:06 +ip_icmp.h
  352.     3670    1654 54.9% 08-May-96 23:23:36 +ip_var.h
  353.     2575    1274 50.5% 23-Dec-95 00:03:06 +tcp.h
  354.     1295     736 43.1% 23-Dec-95 00:03:06 +tcp_debug.h
  355.     2585    1215 52.9% 23-Dec-95 00:03:06 +tcp_fsm.h
  356.     1643     856 47.9% 08-May-96 23:23:38 +tcp_seq.h
  357.     4786    2058 56.9% 08-May-96 23:23:38 +tcp_timer.h
  358.     8838    3326 62.3% 08-May-96 23:23:40 +tcp_var.h
  359.     1514     745 50.7% 23-Dec-95 00:03:08 +tcpip.h
  360.     1103     637 42.2% 23-Dec-95 00:03:08 +udp.h
  361.     1548     797 48.5% 08-May-96 23:23:42 +udp_var.h
  362.     1002     421 57.9% 13-Aug-96 20:07:18 +krpc.h
  363.     9957    3982 60.0% 13-Aug-96 20:07:18 +nfs.h
  364.     2953    1503 49.1% 13-Aug-96 20:07:18 +nfsdiskless.h
  365.     8391    3045 63.7% 13-Aug-96 20:07:18 +nfsm_subs.h
  366.     4468    1943 56.5% 13-Aug-96 20:07:18 +nfsmount.h
  367.     7071    2631 62.7% 13-Aug-96 20:07:18 +nfsnode.h
  368.     3918    1872 52.2% 13-Aug-96 20:07:18 +nfsrtt.h
  369.     3100    1489 51.9% 13-Aug-96 20:07:18 +nfsrvcache.h
  370.     8233    2887 64.9% 13-Aug-96 20:07:18 +nfsv2.h
  371.     7371    3075 58.2% 13-Aug-96 20:07:18 +nqnfs.h
  372.     3180    1470 53.7% 13-Aug-96 20:07:18 +rpcv2.h
  373.     3646    1598 56.1% 13-Aug-96 20:07:18 +xdr_subs.h
  374.     3674    1792 51.2% 13-Aug-96 20:04:22 +nlist.h
  375.     3256     967 70.3% 13-Aug-96 20:04:22 +packets.h
  376.       23      23  0.0% 23-Dec-95 00:03:00 +param.h
  377.     2982    1365 54.2% 18-May-96 15:22:50 +paths.h
  378.     4182    1899 54.5% 23-Dec-95 00:03:08 +dumprestore.h
  379.     3999    1920 51.9% 23-Dec-95 00:03:08 +routed.h
  380.     2687    1330 50.5% 23-Dec-95 00:03:08 +rwhod.h
  381.     4860    2120 56.3% 23-Dec-95 00:03:08 +talkd.h
  382.     3992    1779 55.4% 23-Dec-95 00:03:08 +timed.h
  383.     3745    1598 57.3% 18-May-96 15:22:50 +pwd.h
  384.     2210    1119 49.3% 23-Dec-95 00:03:02 +ranlib.h
  385.     3744    1725 53.9% 13-Aug-96 20:04:54 +regex.h
  386.     2836    1380 51.3% 13-Aug-96 20:04:26 +regexp.h
  387.     6234    2688 56.8% 18-May-96 15:22:52 +resolv.h
  388.     5285    2227 57.8% 13-Aug-96 20:06:00 +auth.h
  389.     2615    1391 46.8% 13-Aug-96 20:06:00 +auth_unix.h
  390.     9824    3527 64.0% 13-Aug-96 20:06:02 +clnt.h
  391.     3176    1447 54.4% 13-Aug-96 20:06:04 +pmap_clnt.h
  392.     3603    1664 53.8% 13-Aug-96 20:06:04 +pmap_prot.h
  393.     2047    1110 45.7% 13-Aug-96 20:06:06 +pmap_rmt.h
  394.     3252    1608 50.5% 13-Aug-96 20:06:06 +rpc.h
  395.     4485    1901 57.6% 13-Aug-96 20:06:08 +rpc_msg.h
  396.     9911    3731 62.3% 13-Aug-96 20:06:10 +svc.h
  397.     1746     984 43.6% 13-Aug-96 20:06:12 +svc_auth.h
  398.     1897    1032 45.5% 13-Aug-96 20:06:14 +types.h
  399.    11086    3863 65.1% 13-Aug-96 20:06:14 +xdr.h
  400.      320     210 34.3% 23-Dec-95 00:03:02 +search.h
  401.     2504    1230 50.8% 14-Mar-96 12:59:54 +setjmp.h
  402.     1936     983 49.2% 23-Dec-95 00:03:02 +sgtty.h
  403.     4145    1709 58.7% 18-Aug-96 03:00:54 +signal.h
  404.     4738    1694 64.2% 23-Dec-95 00:03:02 +stab.def
  405.     3266    1441 55.8% 23-Dec-95 00:03:02 +stab.h
  406.     1957     992 49.3% 23-Dec-95 00:03:02 +stdarg.h
  407.     2313    1168 49.5% 18-May-96 15:22:52 +stddef.h
  408.    12591    4702 62.6% 13-Aug-96 20:48:24 +stdio.h
  409.     6304    2244 64.4% 18-May-96 15:22:56 +stdlib.h
  410.     3860    1405 63.6% 18-May-96 15:22:56 +string.h
  411.     1889     953 49.5% 23-Dec-95 00:03:02 +strings.h
  412.     2293    1107 51.7% 23-Dec-95 00:03:02 +struct.h
  413.     2896    1465 49.4% 08-May-96 23:23:44 +acct.h
  414.     4682    2112 54.8% 18-May-96 15:23:20 +cdefs.h
  415.     2565    1306 49.0% 23-Dec-95 00:03:10 +dir.h
  416.     3185    1560 51.0% 13-Aug-96 20:07:16 +dirent.h
  417.     2288    1139 50.2% 08-May-96 23:23:46 +domain.h
  418.       19      19  0.0% 23-Dec-95 00:03:10 +errno.h
  419.     3107    1432 53.9% 23-Dec-95 00:03:10 +exec.h
  420.     6971    2853 59.0% 13-Aug-96 20:48:48 +fcntl.h
  421.     4162    1916 53.9% 13-Aug-96 20:48:50 +file.h
  422.     2818    1363 51.6% 18-May-96 15:23:24 +filio.h
  423.     3861    1685 56.3% 23-Dec-95 00:03:10 +gprof.h
  424.     3259    1529 53.0% 18-May-96 15:23:24 +ioccom.h
  425.     3262    1588 51.3% 18-May-96 15:23:26 +ioctl.h
  426.     7160    2758 61.4% 18-May-96 15:23:26 +ioctl_compat.h
  427.     3835    1290 66.3% 13-Aug-96 20:48:50 +ixnet_syscall.def
  428.     1051     582 44.6% 14-Mar-96 13:14:28 +ixnet_syscall.h
  429.     3113    1323 57.5% 18-May-96 15:23:28 +localedef.h
  430.    12144    4399 63.7% 08-May-96 23:23:50 +mbuf.h
  431.     3751    1736 53.7% 18-May-96 15:23:30 +mman.h
  432.    10074    3847 61.8% 18-May-96 15:23:30 +mount.h
  433.     4734    2045 56.8% 08-May-96 23:23:52 +mtio.h
  434.     8158    3680 54.8% 08-May-96 23:23:54 +param.h
  435.     9317    3819 59.0% 08-May-96 23:23:54 +proc.h
  436.     8947    3510 60.7% 08-May-96 23:23:56 +protosw.h
  437.     4133    1743 57.8% 18-May-96 15:23:32 +ptrace.h
  438.     3944    1734 56.0% 08-May-96 23:24:00 +resource.h
  439.     8006    3352 58.1% 13-Aug-96 20:06:42 +signal.h
  440.    11688    4283 63.3% 18-May-96 15:23:32 +socket.h
  441.     8243    3326 59.6% 08-May-96 23:24:02 +socketvar.h
  442.     4947    1731 65.0% 18-May-96 15:23:34 +sockio.h
  443.        0       0  0.0% 23-Dec-95 00:03:10 +start.s
  444.     5507    2114 61.6% 13-Aug-96 20:48:52 +stat.h
  445.     1536     839 45.3% 23-Dec-95 00:03:10 +stdc.h
  446.    16869    4215 75.0% 13-Aug-96 20:48:54 +syscall.def
  447.     1035     575 44.4% 23-Dec-95 00:03:12 +syscall.h
  448.     3020    1419 53.0% 23-Dec-95 00:03:12 +syslimits.h
  449.     6390    2654 58.4% 18-May-96 15:23:36 +syslog.h
  450.     9058    3383 62.6% 13-Aug-96 20:48:56 +termios.h
  451.     5324    2178 59.0% 08-May-96 23:24:06 +time.h
  452.     2132    1090 48.8% 23-Dec-95 00:03:12 +timeb.h
  453.     2375    1155 51.3% 08-May-96 23:24:06 +times.h
  454.     2994    1378 53.9% 23-Dec-95 00:03:12 +tracecntl.h
  455.     6213    2736 55.9% 08-May-96 23:24:08 +tty.h
  456.     2716    1313 51.6% 23-Dec-95 00:03:12 +ttychars.h
  457.     6834    2609 61.8% 18-May-96 15:23:36 +ttycom.h
  458.     3373    1583 53.0% 23-Dec-95 00:03:12 +ttydefaults.h
  459.     2268    1111 51.0% 23-Dec-95 00:03:12 +ttydev.h
  460.     5783    2485 57.0% 18-May-96 15:23:38 +types.h
  461.     2332    1169 49.8% 08-May-96 23:24:10 +ucred.h
  462.     2628    1316 49.9% 14-Mar-96 13:00:22 +uio.h
  463.     2251    1170 48.0% 08-May-96 23:24:12 +un.h
  464.     3604    1636 54.6% 23-Dec-95 00:03:12 +unistd.h
  465.     1839     849 53.8% 26-Jan-96 16:44:42 +unix_socket.h
  466.     3500    1644 53.0% 23-Dec-95 00:03:12 +unpcb.h
  467.     3380    1578 53.3% 13-Aug-96 20:48:58 +user.h
  468.     1214     618 49.0% 08-May-96 23:24:14 +utsname.h
  469.     5552    2330 58.0% 08-May-96 23:24:16 +wait.h
  470.     5461    2443 55.2% 23-Dec-95 00:03:02 +sysexits.h
  471.       24      24  0.0% 14-Mar-96 13:14:24 +syslog.h
  472.       25      25  0.0% 23-Dec-95 00:03:02 +termios.h
  473.     3828    1743 54.4% 18-May-96 15:22:58 +time.h
  474.     3130    1503 51.9% 18-May-96 15:22:58 +ttyent.h
  475.     4808    1817 62.2% 23-Dec-95 00:03:02 +tzfile.h
  476.     7088    2404 66.0% 18-Aug-96 03:00:58 +unistd.h
  477.    13015    5064 61.0% 13-Aug-96 20:48:28 +user.h
  478.     2131    1088 48.9% 23-Dec-95 00:03:02 +utime.h
  479.     2735    1230 55.0% 08-May-96 23:23:06 +utmp.h
  480.      137     105 23.3% 23-Dec-95 00:03:02 +values.h
  481.     2064    1047 49.2% 23-Dec-95 00:03:02 +varargs.h
  482.     3199    1507 52.8% 23-Dec-95 00:03:02 +vis.h
  483.       22      22  0.0% 23-Dec-95 00:03:02 +wait.h
  484.     6475    2759 57.3% 18-Aug-96 02:59:32 +INSTALL
  485.     4771    1857 61.0% 23-Dec-95 00:02:58 +install.sh
  486.        0       0  0.0% 04-Sep-96 16:55:14 +
  487.     7089    1588 77.5% 08-May-96 23:24:26 +amitcp.h
  488.     9034    1817 79.8% 08-May-96 23:24:26 +as225.h
  489.      377     254 32.6% 13-Aug-96 20:49:04 +create_header.c
  490.     3017    1461 51.5% 13-Aug-96 19:58:36 +getdomainname.c
  491.     5602    2102 62.4% 27-May-96 16:12:20 +getgrent.c
  492.     1430     742 48.1% 08-May-96 23:24:40 +gethostid.c
  493.     1702     739 56.5% 18-May-96 15:23:50 +gethostnamadr.c
  494.     2512    1210 51.8% 18-May-96 15:23:52 +getlogin.c
  495.     1245     682 45.2% 08-May-96 23:24:42 +getnetbyaddr.c
  496.     1252     687 45.1% 13-Aug-96 20:49:06 +getnetbyname.c
  497.     4527    1730 61.7% 08-May-96 23:24:44 +getnetent.c
  498.     3455    1644 52.4% 13-Aug-96 20:49:08 +getpass.c
  499.     1297     686 47.1% 08-May-96 23:24:46 +getproto.c
  500.     4842    1777 63.3% 08-May-96 23:24:48 +getprotoent.c
  501.     1321     703 46.7% 08-May-96 23:24:48 +getprotoname.c
  502.     4838    1325 72.6% 18-May-96 15:23:52 +getpwent.c
  503.     1369     727 46.8% 08-May-96 23:24:50 +getservbyname.c
  504.     1333     705 47.1% 08-May-96 23:24:52 +getservbyport.c
  505.     5130    1807 64.7% 08-May-96 23:24:52 +getservent.c
  506.     2414     911 62.2% 08-May-96 23:24:54 +group.c
  507.     3584    1685 52.9% 08-May-96 23:24:54 +herror.c
  508.     3499    1584 54.7% 08-May-96 23:24:58 +initgroups.c
  509.     1928     986 48.8% 13-Aug-96 20:49:10 +ix_panic.c
  510.     4344    1862 57.1% 08-May-96 23:25:02 +ixnet.h
  511.     1420     701 50.6% 18-May-96 15:23:58 +ixnet_close.c
  512.     1010     566 43.9% 08-May-96 23:25:04 +ixnet_expunge.c
  513.     2282    1090 52.2% 08-May-96 23:25:04 +ixnet_init.c
  514.     4925    1964 60.1% 13-Aug-96 20:49:12 +ixnet_open.c
  515.        0       0  0.0% 14-Mar-96 13:15:10 +log2.c
  516.     2483    1102 55.6% 18-Aug-96 03:02:38 +Makefile.in
  517.     3427    1401 59.1% 13-Aug-96 20:49:14 +misc.c
  518.     1196     532 55.5% 13-Aug-96 20:49:16 +parse_version.c
  519.     1791     912 49.0% 08-May-96 23:25:18 +set_errno.c
  520.     2820    1333 52.7% 18-May-96 15:24:14 +sethostent.c
  521.     2094    1041 50.2% 13-Aug-96 20:49:20 +siglaunch.c
  522.    18589    4512 75.7% 13-Aug-96 20:49:22 +socket.c
  523.     8655    3400 60.7% 18-May-96 15:24:16 +start.s
  524.     4216    1635 61.2% 08-May-96 23:25:26 +syslog.c
  525.     2040     823 59.6% 08-May-96 23:25:30 +user.c
  526.     4518    1018 77.4% 08-May-96 23:25:32 +usergroup.h
  527.     1725     929 46.1% 08-May-96 23:25:48 +__amiga_filehandle.c
  528.     2503    1266 49.4% 19-Aug-96 13:08:10 +__close.c
  529.     4507    1965 56.4% 13-Aug-96 20:49:34 +__fioctl.c
  530.     3489    1455 58.2% 13-Aug-96 20:49:36 +__fselect.c
  531.     7357    3024 58.8% 18-Aug-96 03:03:02 +__fstat.c
  532.     1346     713 47.0% 08-May-96 23:25:54 +__init_std_packet.c
  533.     1657     817 50.6% 08-May-96 23:25:54 +__ioctl.c
  534.     3229    1265 60.8% 13-Aug-96 20:49:40 +__ioerr_to_errno.c
  535.    10901    4083 62.5% 13-Aug-96 20:49:42 +__load_seg.c
  536.     1982     956 51.7% 08-May-96 23:25:58 +__lock.c
  537.     1925     971 49.5% 08-May-96 23:26:00 +__make_link.c
  538.     1478     784 46.9% 08-May-96 23:26:02 +__mclose.c
  539.     1549     804 48.0% 08-May-96 23:26:04 +__mread.c
  540.      228     179 21.4% 08-May-96 23:26:04 +__must_recompile.c
  541.     3426    1597 53.3% 08-May-96 23:26:06 +__open.c
  542.    15757    5798 63.2% 13-Aug-96 20:49:46 +__plock.c
  543.     4899    2214 54.8% 13-Aug-96 20:49:48 +__read.c
  544.     6804    2629 61.3% 13-Aug-96 20:49:50 +__tioctl.c
  545.     2176    1010 53.5% 08-May-96 23:26:10 +__unlock.c
  546.     2541    1082 57.4% 13-Aug-96 20:49:54 +__wait_packet.c
  547.     3209    1440 55.1% 18-May-96 15:24:42 +__write.c
  548.    14060    5522 60.7% 13-Aug-96 20:49:54 +_cli_parse.c
  549.     8729    3310 62.0% 13-Aug-96 20:49:56 +_main.c
  550.     4014    1832 54.3% 08-May-96 23:26:18 +_wb_parse.c
  551.     1711     923 46.0% 08-May-96 23:26:18 +access.c
  552.     9920    3554 64.1% 08-May-96 23:26:20 +buddy-alloc.c
  553.     4471    1957 56.2% 22-Aug-96 14:14:36 +chdir.c
  554.     2872    1196 58.3% 18-Aug-96 03:03:14 +chmod.c
  555.     1613     835 48.2% 08-May-96 23:26:22 +close.c
  556.     1306     710 45.6% 08-May-96 23:26:24 +closedir.c
  557.     5855    2479 57.6% 13-Aug-96 20:49:58 +convert_dir.c
  558.     1217     681 44.0% 08-May-96 23:26:26 +creat.c
  559.      741     369 50.2% 13-Aug-96 20:50:00 +create_header.c
  560.     1576     809 48.6% 13-Aug-96 22:03:14 +createextio.c
  561.     1853     939 49.3% 13-Aug-96 22:03:14 +createport.c
  562.     1299     705 45.7% 13-Aug-96 22:03:16 +createstdio.c
  563.     3483    1644 52.7% 13-Aug-96 22:03:18 +createtask.c
  564.     1346     689 48.8% 13-Aug-96 20:50:02 +debugstub.c
  565.     2125    1073 49.5% 23-Dec-95 00:03:20 +defs.h
  566.     1398     757 45.8% 08-May-96 23:26:34 +deleteextio.c
  567.     1434     768 46.4% 18-May-96 15:24:46 +deleteport.c
  568.     1211     670 44.6% 08-May-96 23:26:36 +deletestdio.c
  569.     1289     706 45.2% 08-May-96 23:26:38 +deletetask.c
  570.     1830     980 46.4% 08-May-96 23:26:38 +exit.c
  571.     1555     826 46.8% 13-Aug-96 20:50:02 +fchdir.c
  572.     1404     771 45.0% 08-May-96 23:26:42 +fchmod.c
  573.     1134     622 45.1% 18-May-96 15:24:46 +fsync.c
  574.     1517     805 46.9% 08-May-96 23:26:44 +ftime.c
  575.     2268    1088 52.0% 18-May-96 15:24:48 +ftruncate.c
  576.     1905     955 49.8% 08-May-96 23:26:46 +get_file.c
  577.     2380    1149 51.7% 08-May-96 23:26:48 +getpriority.c
  578.     2329    1036 55.5% 08-May-96 23:26:50 +getrlimit.c
  579.     1859     967 47.9% 08-May-96 23:26:50 +gettimeofday.c
  580.     4054    1684 58.4% 18-May-96 15:24:48 +getusershell.c
  581.     8015    2523 68.5% 18-May-96 15:24:50 +group.c
  582.     3823    1751 54.1% 13-Aug-96 20:50:04 +hwck.c
  583.     1858     968 47.9% 13-Aug-96 20:50:06 +ioctl.c
  584.     1322     733 44.5% 08-May-96 23:26:56 +isatty.c
  585.     3627    1636 54.8% 13-Aug-96 20:50:08 +ix_close.c
  586.     4091    2016 50.7% 08-May-96 23:26:58 +ix_exec_entry.c
  587.     2534    1156 54.3% 18-May-96 15:24:52 +ix_expunge.c
  588.     3389    1541 54.5% 18-May-96 15:24:54 +ix_get_vars2.c
  589.     4830    1956 59.5% 13-Aug-96 20:50:08 +ix_init.c
  590.     7673    2935 61.7% 13-Aug-96 20:50:10 +ix_open.c
  591.     3044    1520 50.0% 13-Aug-96 20:50:12 +ix_resident.c
  592.     1703     550 67.7% 13-Aug-96 20:50:14 +ix_settings.c
  593.     3717    1550 58.2% 13-Aug-96 20:50:16 +ix_sigwinch.c
  594.     4204    1878 55.3% 18-May-96 15:24:56 +ix_sleep.c
  595.     5210    2476 52.4% 18-May-96 15:24:58 +ix_startup.c
  596.     4463    2037 54.3% 18-Aug-96 03:03:26 +ix_timer.c
  597.     8813    3477 60.5% 13-Aug-96 20:50:20 +ixemul.h
  598.    11182    3328 70.2% 13-Aug-96 20:50:22 +ixnet_stubs.c
  599.     3702    1335 63.9% 18-Aug-96 03:03:30 +ixprotos.h
  600.     8665    3154 63.6% 13-Aug-96 20:50:26 +kern_descrip.c
  601.    24243    8286 65.8% 13-Aug-96 20:50:28 +kern_sig.c
  602.     5863    2406 58.9% 08-May-96 23:27:20 +kern_time.c
  603.     2597    1218 53.0% 08-May-96 23:27:20 +kmalloc.c
  604.     1243     549 55.8% 23-Dec-95 00:03:24 +kprintf.h
  605.     1528     829 45.7% 08-May-96 23:27:22 +link.c
  606.     7437    2518 66.1% 18-Aug-96 03:03:34 +lseek.c
  607.    21629    8084 62.6% 18-Aug-96 08:26:32 +machdep.c
  608.     4943    1895 61.6% 13-Aug-96 20:49:28 +Makefile.in
  609.     7075    2620 62.9% 08-May-96 23:27:26 +malloc.c
  610.     9895    1820 81.6% 09-Jan-96 08:26:08 +mathsup.c
  611.     3903    1576 59.6% 13-Aug-96 20:50:32 +misc.c
  612.     2074    1086 47.6% 18-Aug-96 03:03:38 +mkdir.c
  613.     3111    1209 61.1% 13-Aug-96 20:10:54 +mmap.c
  614.    17944    4850 72.9% 18-Aug-96 03:03:40 +multiuser.h
  615.     4292     873 79.6% 08-May-96 23:27:30 +multiuser_inlines.h
  616.     2455    1250 49.0% 08-May-96 23:27:30 +nice.c
  617.     7660    3290 57.0% 18-Aug-96 03:03:44 +open.c
  618.     1959     944 51.8% 08-May-96 23:27:34 +opendir.c
  619.     1309     598 54.3% 13-Aug-96 20:50:34 +parse_version.c
  620.    12866    3682 71.3% 13-Aug-96 20:50:36 +pipe.c
  621.     3161    1217 61.4% 13-Aug-96 20:50:38 +posixconf.c
  622.     1404     763 45.6% 18-Aug-96 03:03:46 +profil.c
  623.    13210    4336 67.1% 13-Aug-96 20:50:40 +ptrace.c
  624.     1560     821 47.3% 08-May-96 23:27:40 +read.c
  625.     1891     925 51.0% 08-May-96 23:27:42 +readdir.c
  626.     4107    1764 57.0% 18-May-96 15:25:10 +readlink.c
  627.     1424     766 46.2% 08-May-96 23:27:44 +readv.c
  628.     2676    1188 55.6% 08-May-96 23:27:46 +rename.c
  629.     1259     696 44.7% 08-May-96 23:27:46 +rewinddir.c
  630.     1271     709 44.2% 08-May-96 23:27:48 +rmdir.c
  631.     1271     702 44.7% 08-May-96 23:27:50 +seekdir.c
  632.     9582    3487 63.6% 13-Aug-96 20:50:42 +select.c
  633.     2049    1022 50.1% 13-Aug-96 20:09:54 +select.h
  634.     1573     756 51.9% 08-May-96 23:27:52 +set_socket_stdio.c
  635.     2436    1183 51.4% 08-May-96 23:27:54 +setpriority.c
  636.     1544     832 46.1% 08-May-96 23:27:56 +setrlimit.c
  637.     1657     871 47.4% 08-May-96 23:27:56 +settimeofday.c
  638.    10329    2486 75.9% 13-Aug-96 20:50:44 +socket.c
  639.     9632    2974 69.1% 13-Aug-96 20:50:48 +stackextend.c
  640.    11066    3733 66.2% 13-Aug-96 20:50:50 +start.s
  641.     9650    3593 62.7% 25-Aug-96 08:46:42 +stat.c
  642.     9637    2882 70.0% 08-May-96 23:28:04 +statfs.c
  643.     2416    1118 53.7% 08-May-96 23:28:06 +symlink.c
  644.     5591    2475 55.7% 08-May-96 23:28:06 +syslog.c
  645.     1270     703 44.6% 08-May-96 23:28:08 +telldir.c
  646.     8323    3108 62.6% 13-Aug-96 20:50:54 +tracecntl.c
  647.    16248    5785 64.3% 13-Aug-96 20:50:56 +trap.s
  648.     1317     712 45.9% 08-May-96 23:28:10 +truncate.c
  649.     2312    1026 55.6% 18-Aug-96 03:03:56 +umask.c
  650.     2886    1501 47.9% 18-May-96 15:25:16 +unlink.c
  651.     7216    2607 63.8% 18-May-96 15:25:16 +user.c
  652.     1399     731 47.7% 08-May-96 23:28:14 +utime.c
  653.     2692    1370 49.1% 13-Aug-96 20:50:58 +utimes.c
  654.    22581    8328 63.1% 18-Aug-96 03:03:58 +vfork.c
  655.     1532     809 47.1% 08-May-96 23:28:22 +write.c
  656.     1434     767 46.5% 08-May-96 23:28:22 +writev.c
  657.    11960    4540 62.0% 13-Aug-96 20:51:24 +crt0.c
  658.     9152    3426 62.5% 13-Aug-96 20:10:58 +gmon.c
  659.     3582    1636 54.3% 23-Dec-95 00:03:28 +gmon.h
  660.     2380     977 58.9% 18-Aug-96 03:04:04 +Makefile.in
  661.       54      54  0.0% 18-May-96 15:25:34 +v1.c
  662.    13767    3305 75.9% 18-Aug-96 02:59:34 +Makefile.in
  663.        0       0  0.0% 04-Sep-96 16:55:16 +
  664.        0       0  0.0% 04-Sep-96 16:55:16 +
  665.        0       0  0.0% 04-Sep-96 16:55:16 +
  666.      939     454 51.6% 29-May-96 19:28:28 +Makefile.in
  667.     2505    1074 57.1% 18-May-96 15:25:50 +ixrun.1
  668.     4214    1931 54.1% 14-Aug-96 13:59:38 +ixtrace.1
  669.     3784    1824 51.7% 08-May-96 23:33:40 +_exit.2
  670.     5144    2350 54.3% 08-May-96 23:33:42 +accept.2
  671.     4602    2162 53.0% 08-May-96 23:33:42 +access.2
  672.     3965    1966 50.4% 08-May-96 23:33:44 +adjtime.2
  673.     4266    2062 51.6% 08-May-96 23:33:44 +bind.2
  674.     4215    1904 54.8% 08-May-96 23:33:44 +chdir.2
  675.     5918    2577 56.4% 08-May-96 23:33:46 +chmod.2
  676.     4636    2135 53.9% 08-May-96 23:33:46 +chown.2
  677.     3582    1779 50.3% 08-May-96 23:33:48 +chroot.2
  678.     4142    2009 51.4% 08-May-96 23:33:48 +close.2
  679.     5052    2313 54.2% 08-May-96 23:33:50 +connect.2
  680.     3933    1906 51.5% 08-May-96 23:33:50 +dup.2
  681.     8782    3554 59.5% 08-May-96 23:33:52 +execve.2
  682.    12582    4767 62.1% 08-May-96 23:33:52 +fcntl.2
  683.     4708    2235 52.5% 08-May-96 23:33:52 +flock.2
  684.     3955    1908 51.7% 08-May-96 23:33:54 +fork.2
  685.     2972    1549 47.8% 08-May-96 23:33:54 +fsync.2
  686.     4663    2151 53.8% 08-May-96 23:33:56 +getfsstat.2
  687.     2940    1432 51.2% 08-May-96 23:33:56 +getgid.2
  688.     3243    1569 51.6% 08-May-96 23:33:58 +getgroups.2
  689.     5019    2261 54.9% 08-May-96 23:33:58 +getitimer.2
  690.     4337    2053 52.6% 08-May-96 23:34:00 +getlogin.2
  691.     3143    1575 49.8% 08-May-96 23:34:00 +getpeername.2
  692.     3459    1701 50.8% 08-May-96 23:34:00 +getpgrp.2
  693.     2681    1344 49.8% 08-May-96 23:34:02 +getpid.2
  694.     4205    1913 54.5% 08-May-96 23:34:02 +getpriority.2
  695.     6243    2749 55.9% 08-May-96 23:34:04 +getrlimit.2
  696.     6149    2499 59.3% 08-May-96 23:34:04 +getrusage.2
  697.     3103    1576 49.2% 08-May-96 23:34:06 +getsockname.2
  698.    11642    4535 61.0% 08-May-96 23:34:06 +getsockopt.2
  699.     4043    1985 50.9% 08-May-96 23:34:08 +gettimeofday.2
  700.     2876    1410 50.9% 08-May-96 23:34:08 +getuid.2
  701.    25884    9584 62.9% 08-May-96 23:34:10 +intro.2
  702.     3312    1674 49.4% 08-May-96 23:34:10 +ioctl.2
  703.     4687    2088 55.4% 08-May-96 23:34:12 +kill.2
  704.     4766    2139 55.1% 08-May-96 23:34:12 +link.2
  705.     3383    1673 50.5% 08-May-96 23:34:14 +listen.2
  706.     3855    1856 51.8% 08-May-96 23:34:14 +lseek.2
  707.     4189    1929 53.9% 08-May-96 23:34:16 +mkdir.2
  708.     4334    1993 54.0% 08-May-96 23:34:16 +mkfifo.2
  709.     4448    2050 53.9% 08-May-96 23:34:18 +mknod.2
  710.     7875    3221 59.0% 08-May-96 23:34:18 +open.2
  711.     5126    2262 55.8% 08-May-96 23:34:18 +pathconf.2
  712.     3675    1846 49.7% 08-May-96 23:34:20 +pipe.2
  713.     4101    1981 51.6% 08-May-96 23:34:20 +profil.2
  714.    10282    3649 64.5% 08-May-96 23:34:22 +ptrace.2
  715.     5186    2418 53.3% 08-May-96 23:34:22 +read.2
  716.     3388    1677 50.5% 08-May-96 23:34:24 +readlink.2
  717.     8103    3564 56.0% 08-May-96 23:34:24 +recv.2
  718.     5804    2538 56.2% 08-May-96 23:34:26 +rename.2
  719.     3774    1801 52.2% 08-May-96 23:34:26 +rmdir.2
  720.     5867    2652 54.7% 08-May-96 23:34:26 +select.2
  721.     4941    2325 52.9% 08-May-96 23:34:28 +send.2
  722.     2998    1510 49.6% 08-May-96 23:34:28 +setgroups.2
  723.     3991    1715 57.0% 08-May-96 23:34:30 +setuid.2
  724.     2871    1423 50.4% 08-May-96 23:34:30 +shutdown.2
  725.    11789    4582 61.1% 08-May-96 23:34:32 +sigaction.2
  726.     2895    1438 50.3% 08-May-96 23:34:32 +sigpending.2
  727.     3846    1797 53.2% 08-May-96 23:34:32 +sigprocmask.2
  728.     3529    1751 50.3% 08-May-96 23:34:34 +sigreturn.2
  729.     2292    1168 49.0% 08-May-96 23:34:34 +sigstack.2
  730.     3110    1567 49.6% 08-May-96 23:34:36 +sigsuspend.2
  731.     7813    3452 55.8% 08-May-96 23:34:36 +socket.2
  732.     3299    1595 51.6% 08-May-96 23:34:38 +socketpair.2
  733.     8013    3287 58.9% 08-May-96 23:34:38 +stat.2
  734.     4924    2174 55.8% 08-May-96 23:34:40 +statfs.2
  735.     4650    1975 57.5% 08-May-96 23:34:40 +symlink.2
  736.     2810    1451 48.3% 08-May-96 23:34:42 +sync.2
  737.     3992    1915 52.0% 08-May-96 23:34:42 +truncate.2
  738.     3052    1526 50.0% 08-May-96 23:34:44 +umask.2
  739.     4121    1942 52.8% 08-May-96 23:34:44 +unlink.2
  740.     4170    1925 53.8% 08-May-96 23:34:44 +utimes.2
  741.     4040    2015 50.1% 08-May-96 23:34:46 +vfork.2
  742.     7884    3095 60.7% 08-May-96 23:34:46 +wait.2
  743.     5759    2649 54.0% 08-May-96 23:34:48 +write.2
  744.     2653    1351 49.0% 08-May-96 23:35:02 +abort.3
  745.     2632    1308 50.3% 08-May-96 23:35:02 +abs.3
  746.     2483    1244 49.8% 08-May-96 23:35:04 +acos.3
  747.     2490    1256 49.5% 08-May-96 23:35:04 +acosh.3
  748.     2920    1488 49.0% 08-May-96 23:35:06 +alarm.3
  749.     2838    1428 49.6% 08-May-96 23:35:06 +alloca.3
  750.     2506    1260 49.7% 08-May-96 23:35:08 +asin.3
  751.     2588    1272 50.8% 08-May-96 23:35:08 +asinh.3
  752.     2527    1270 49.7% 08-May-96 23:35:10 +atan.3
  753.     2502    1259 49.6% 08-May-96 23:35:10 +atanh.3
  754.     2960    1505 49.1% 08-May-96 23:35:12 +atexit.3
  755.     2644    1343 49.2% 08-May-96 23:35:12 +atof.3
  756.     2666    1360 48.9% 08-May-96 23:35:14 +atoi.3
  757.     2668    1361 48.9% 08-May-96 23:35:14 +atol.3
  758.     2657    1338 49.6% 08-May-96 23:35:14 +bcmp.3
  759.     2551    1281 49.7% 08-May-96 23:35:16 +bcopy.3
  760.     3444    1669 51.5% 08-May-96 23:35:16 +bsearch.3
  761.     3445    1523 55.7% 08-May-96 23:35:18 +bstring.3
  762.     8291    3597 56.6% 18-May-96 15:25:54 +btree.3
  763.     2964    1478 50.1% 18-May-96 15:25:54 +byteorder.3
  764.     2447    1239 49.3% 08-May-96 23:35:18 +bzero.3
  765.     2734    1383 49.4% 08-May-96 23:35:18 +calloc.3
  766.     2429    1226 49.5% 08-May-96 23:35:20 +ceil.3
  767.     2671    1346 49.6% 08-May-96 23:35:20 +clock.3
  768.     2619    1319 49.6% 08-May-96 23:35:22 +cos.3
  769.     2457    1219 50.3% 08-May-96 23:35:22 +cosh.3
  770.     2535    1319 47.9% 08-May-96 23:35:24 +creat.3
  771.     6851    3014 56.0% 08-May-96 23:35:24 +crypt.3
  772.     3158    1584 49.8% 08-May-96 23:35:24 +ctermid.3
  773.     5053    2152 57.4% 08-May-96 23:35:26 +ctime.3
  774.     3078    1414 54.0% 08-May-96 23:35:26 +ctype.3
  775.     6003    2467 58.9% 08-May-96 23:35:28 +curses.3
  776.     3922    1824 53.4% 08-May-96 23:35:28 +cuserid.3
  777.    13550    4840 64.2% 18-May-96 15:25:56 +dbopen.3
  778.     4791    2105 56.0% 08-May-96 23:35:30 +directory.3
  779.     2530    1277 49.5% 08-May-96 23:35:30 +div.3
  780.     7017    2780 60.3% 08-May-96 23:35:32 +exec.3
  781.     2859    1421 50.2% 08-May-96 23:35:32 +exit.3
  782.     6838    3039 55.5% 08-May-96 23:35:32 +exp.3
  783.     2523    1245 50.6% 08-May-96 23:35:34 +fabs.3
  784.     3091    1561 49.4% 08-May-96 23:35:34 +fclose.3
  785.     3361    1541 54.1% 08-May-96 23:35:36 +ferror.3
  786.     3503    1723 50.8% 08-May-96 23:35:36 +fflush.3
  787.     2510    1266 49.5% 08-May-96 23:35:38 +ffs.3
  788.     3865    1899 50.8% 13-Aug-96 20:03:46 +fgetln.3
  789.     4194    2002 52.2% 08-May-96 23:35:38 +fgets.3
  790.     2440    1232 49.5% 08-May-96 23:35:40 +floor.3
  791.     4015    1865 53.5% 08-May-96 23:35:40 +fnmatch.3
  792.     6014    2426 59.6% 08-May-96 23:35:42 +fopen.3
  793.     3181    1547 51.3% 08-May-96 23:35:42 +fputs.3
  794.     3464    1632 52.8% 08-May-96 23:35:44 +fread.3
  795.     2892    1440 50.2% 08-May-96 23:35:44 +free.3
  796.     2912    1469 49.5% 08-May-96 23:35:44 +frexp.3
  797.     4829    2145 55.5% 08-May-96 23:35:46 +fseek.3
  798.     2978    1527 48.7% 08-May-96 23:35:46 +ftime.3
  799.    18930    6031 68.1% 08-May-96 23:35:48 +fts.3
  800.     4946    2251 54.4% 08-May-96 23:35:48 +funopen.3
  801.     3895    1847 52.5% 08-May-96 23:35:50 +getc.3
  802.     4328    2068 52.2% 08-May-96 23:35:50 +getcwd.3
  803.     2545    1299 48.9% 08-May-96 23:35:52 +getdtablesize.3
  804.     4190    1935 53.8% 08-May-96 23:35:52 +getenv.3
  805.     5291    2338 55.8% 08-May-96 23:35:52 +getgrent.3
  806.     7092    3072 56.6% 08-May-96 23:35:54 +gethostbyname.3
  807.     2849    1423 50.0% 08-May-96 23:35:54 +gethostid.3
  808.     3360    1688 49.7% 08-May-96 23:35:56 +gethostname.3
  809.     3483    1674 51.9% 08-May-96 23:35:58 +getmntinfo.3
  810.     4363    2023 53.6% 08-May-96 23:36:00 +getnetent.3
  811.     6719    2946 56.1% 08-May-96 23:36:00 +getopt.3
  812.     2497    1278 48.8% 08-May-96 23:36:02 +getpagesize.3
  813.     3180    1593 49.9% 08-May-96 23:36:04 +getpass.3
  814.     4131    1893 54.1% 08-May-96 23:36:04 +getprotoent.3
  815.     5887    2608 55.6% 08-May-96 23:36:06 +getpwent.3
  816.     4449    2051 53.8% 08-May-96 23:36:06 +getservent.3
  817.     4284    1977 53.8% 08-May-96 23:36:08 +getsubopt.3
  818.     5613    2499 55.4% 08-May-96 23:36:08 +getttyent.3
  819.     3105    1490 52.0% 08-May-96 23:36:08 +getusershell.3
  820.    10856    4397 59.4% 08-May-96 23:36:10 +glob.3
  821.     5268    2513 52.2% 18-May-96 15:25:58 +hash.3
  822.     2741    1348 50.8% 08-May-96 23:36:12 +index.3
  823.     5919    2469 58.2% 18-May-96 15:25:58 +inet.3
  824.     3001    1475 50.8% 08-May-96 23:36:12 +initgroups.3
  825.     2336    1210 48.2% 08-May-96 23:36:12 +insque.3
  826.     6568    2849 56.6% 08-May-96 23:36:14 +intro.3
  827.     2880    1384 51.9% 08-May-96 23:36:14 +isalnum.3
  828.     3145    1472 53.1% 08-May-96 23:36:16 +isalpha.3
  829.     2604    1282 50.7% 08-May-96 23:36:16 +isascii.3
  830.     2820    1357 51.8% 08-May-96 23:36:16 +iscntrl.3
  831.     2848    1369 51.9% 08-May-96 23:36:18 +isdigit.3
  832.     2869    1388 51.6% 08-May-96 23:36:18 +isgraph.3
  833.     2607    1325 49.1% 08-May-96 23:36:20 +isinf.3
  834.     3082    1468 52.3% 08-May-96 23:36:20 +islower.3
  835.     2872    1382 51.8% 08-May-96 23:36:22 +isprint.3
  836.     2887    1397 51.6% 08-May-96 23:36:22 +ispunct.3
  837.     3301    1567 52.5% 08-May-96 23:36:22 +isspace.3
  838.     3074    1465 52.3% 08-May-96 23:36:24 +isupper.3
  839.     2847    1371 51.8% 08-May-96 23:36:24 +isxdigit.3
  840.     3400    1654 51.3% 08-May-96 23:36:26 +killpg.3
  841.     2579    1285 50.1% 08-May-96 23:36:26 +labs.3
  842.     2773    1410 49.1% 08-May-96 23:36:26 +ldexp.3
  843.     2640    1336 49.3% 08-May-96 23:36:28 +ldiv.3
  844.     4307    2110 51.0% 18-May-96 15:26:00 +linkaddr.3
  845.     3365    1687 49.8% 08-May-96 23:36:28 +malloc.3
  846.     2609    1307 49.9% 08-May-96 23:36:30 +memccpy.3
  847.     2814    1406 50.0% 08-May-96 23:36:30 +memchr.3
  848.     2933    1479 49.5% 08-May-96 23:36:32 +memcmp.3
  849.     2872    1421 50.5% 08-May-96 23:36:32 +memcpy.3
  850.     2729    1374 49.6% 08-May-96 23:36:32 +memmove.3
  851.     2658    1295 51.2% 08-May-96 23:36:34 +memory.3
  852.     2552    1304 48.9% 08-May-96 23:36:34 +memset.3
  853.     3849    1798 53.2% 08-May-96 23:36:36 +mktemp.3
  854.     2774    1386 50.0% 08-May-96 23:36:36 +modf.3
  855.     6087    2435 59.9% 18-May-96 15:26:00 +mpool.3
  856.     4948    2079 57.9% 18-May-96 15:26:02 +newctime.3
  857.     5337    2144 59.8% 18-May-96 15:26:02 +newtzset.3
  858.     2691    1359 49.4% 08-May-96 23:36:36 +nice.3
  859.     4314    2090 51.5% 18-May-96 15:26:04 +ns.3
  860.     2708    1395 48.4% 08-May-96 23:36:38 +pause.3
  861.     2974    1487 50.0% 08-May-96 23:36:42 +perror.3
  862.     4805    2172 54.7% 08-May-96 23:36:44 +popen.3
  863.    14593    5282 63.8% 08-May-96 23:36:46 +printf.3
  864.     3260    1595 51.0% 18-Aug-96 03:05:28 +psignal.3
  865.     3645    1743 52.1% 08-May-96 23:36:46 +putc.3
  866.     2531    1265 50.0% 08-May-96 23:36:48 +qabs.3
  867.     2583    1315 49.0% 08-May-96 23:36:48 +qdiv.3
  868.     6213    2744 55.8% 08-May-96 23:36:50 +qsort.3
  869.     4781    2288 52.1% 08-May-96 23:36:50 +radixsort.3
  870.     2785    1396 49.8% 08-May-96 23:36:52 +raise.3
  871.     2950    1485 49.6% 08-May-96 23:36:52 +rand.3
  872.     5591    2515 55.0% 08-May-96 23:36:52 +random.3
  873.     6194    2761 55.4% 08-May-96 23:36:54 +rcmd.3
  874.     3260    1536 52.8% 08-May-96 23:36:54 +realloc.3
  875.     6360    2808 55.8% 18-May-96 15:26:04 +recno.3
  876.    16823    6596 60.7% 13-Aug-96 20:03:46 +regex.3
  877.     9073    3731 58.8% 08-May-96 23:36:56 +regexp.3
  878.     2809    1428 49.1% 08-May-96 23:36:56 +remove.3
  879.     8869    3595 59.4% 18-May-96 15:26:06 +resolver.3
  880.     2727    1340 50.8% 08-May-96 23:36:58 +rindex.3
  881.    10432    3889 62.7% 08-May-96 23:36:58 +scanf.3
  882.     5622    2545 54.7% 08-May-96 23:37:00 +setbuf.3
  883.     4864    2114 56.5% 08-May-96 23:37:00 +setjmp.3
  884.     3459    1691 51.1% 08-May-96 23:37:00 +setregid.3
  885.     3320    1635 50.7% 08-May-96 23:37:02 +setreuid.3
  886.     2871    1453 49.3% 08-May-96 23:37:02 +sigblock.3
  887.     4014    1878 53.2% 08-May-96 23:37:04 +siginterrupt.3
  888.     8035    3349 58.3% 08-May-96 23:37:04 +signal.3
  889.     2769    1402 49.3% 08-May-96 23:37:06 +sigpause.3
  890.     2825    1429 49.4% 08-May-96 23:37:06 +sigsetmask.3
  891.     3898    1703 56.3% 08-May-96 23:37:06 +sigsetops.3
  892.    10631    4232 60.1% 08-May-96 23:37:08 +sigvec.3
  893.     2581    1286 50.1% 08-May-96 23:37:08 +sin.3
  894.     2590    1290 50.1% 08-May-96 23:37:10 +sinh.3
  895.     3684    1778 51.7% 08-May-96 23:37:12 +sleep.3
  896.     2553    1261 50.6% 08-May-96 23:37:12 +sqrt.3
  897.     9050    3558 60.6% 08-May-96 23:37:14 +stdio.3
  898.     3011    1462 51.4% 08-May-96 23:37:14 +strcasecmp.3
  899.     2965    1425 51.9% 08-May-96 23:37:14 +strcat.3
  900.     2931    1430 51.2% 08-May-96 23:37:16 +strchr.3
  901.     3031    1473 51.4% 08-May-96 23:37:16 +strcmp.3
  902.     2804    1394 50.2% 08-May-96 23:37:18 +strcoll.3
  903.     3251    1513 53.4% 08-May-96 23:37:18 +strcpy.3
  904.     2868    1409 50.8% 08-May-96 23:37:18 +strcspn.3
  905.     2465    1244 49.5% 08-May-96 23:37:20 +strdup.3
  906.     2679    1356 49.3% 08-May-96 23:37:20 +strerror.3
  907.     6609    2401 63.6% 08-May-96 23:37:22 +strftime.3
  908.     4480    1740 61.1% 08-May-96 23:37:22 +string.3
  909.     2594    1315 49.3% 08-May-96 23:37:24 +strlen.3
  910.     5216    2090 59.9% 08-May-96 23:37:24 +strmode.3
  911.     2842    1389 51.1% 08-May-96 23:37:26 +strpbrk.3
  912.     2875    1413 50.8% 08-May-96 23:37:26 +strrchr.3
  913.     3074    1549 49.6% 08-May-96 23:37:26 +strsep.3
  914.     2597    1324 49.0% 08-May-96 23:37:28 +strsignal.3
  915.     2791    1378 50.6% 08-May-96 23:37:28 +strspn.3
  916.     2941    1412 51.9% 08-May-96 23:37:30 +strstr.3
  917.     3742    1776 52.5% 08-May-96 23:37:30 +strtod.3
  918.     3747    1815 51.5% 08-May-96 23:37:32 +strtok.3
  919.     4429    2098 52.6% 08-May-96 23:37:32 +strtol.3
  920.     4523    2145 52.5% 08-May-96 23:37:32 +strtoul.3
  921.     2644    1343 49.2% 08-May-96 23:37:34 +strxfrm.3
  922.     2438    1247 48.8% 08-May-96 23:37:34 +swab.3
  923.     6183    2558 58.6% 08-May-96 23:37:36 +sysconf.3
  924.     7063    3109 55.9% 08-May-96 23:37:36 +syslog.3
  925.     3188    1583 50.3% 08-May-96 23:37:38 +system.3
  926.     2622    1317 49.7% 08-May-96 23:37:38 +tan.3
  927.     2564    1266 50.6% 08-May-96 23:37:40 +tanh.3
  928.     2955    1463 50.4% 08-May-96 23:37:40 +tcgetpgrp.3
  929.     4606    1947 57.7% 08-May-96 23:37:42 +tcsendbreak.3
  930.     9146    3291 64.0% 08-May-96 23:37:42 +tcsetattr.3
  931.     3568    1633 54.2% 08-May-96 23:37:44 +tcsetpgrp.3
  932.     6434    2846 55.7% 08-May-96 23:37:44 +termcap.3
  933.     3011    1546 48.6% 08-May-96 23:37:46 +time.3
  934.     3193    1489 53.3% 18-May-96 15:26:08 +time2posix.3
  935.     3834    1800 53.0% 08-May-96 23:37:46 +times.3
  936.     6083    2571 57.7% 08-May-96 23:37:48 +tmpnam.3
  937.     3112    1473 52.6% 08-May-96 23:37:48 +tolower.3
  938.     3112    1481 52.4% 08-May-96 23:37:48 +toupper.3
  939.     3592    1717 52.1% 08-May-96 23:37:50 +ttyname.3
  940.     3050    1546 49.3% 08-May-96 23:37:50 +ualarm.3
  941.     3115    1547 50.3% 08-May-96 23:37:52 +uname.3
  942.     3381    1688 50.0% 08-May-96 23:37:52 +ungetc.3
  943.     5173    2349 54.5% 08-May-96 23:37:54 +unvis.3
  944.     3133    1559 50.2% 08-May-96 23:37:54 +usleep.3
  945.     4650    2168 53.3% 08-May-96 23:37:56 +utime.3
  946.     2783    1423 48.8% 08-May-96 23:37:56 +valloc.3
  947.     6673    2844 57.3% 08-May-96 23:37:56 +vis.3
  948.     4622    2186 52.7% 08-May-96 23:37:58 +vtimes.3
  949.     3475    1244 64.2% 18-May-96 15:26:12 +tzfile.5
  950.    11803    4608 60.9% 13-Aug-96 20:03:52 +re_format.7
  951.     4529    1853 59.0% 18-May-96 15:26:14 +ixtimezone.8
  952.     9283    3596 61.2% 18-May-96 15:26:16 +zic.8
  953.    13056    2792 78.6% 29-May-96 15:07:18 +bin
  954.      802     441 45.0% 10-Jul-96 09:50:30 +bin-pi
  955.     5337    1223 77.0% 29-Aug-96 00:29:02 +env-bin
  956.      628     361 42.5% 10-Jul-96 09:50:36 +env-bin-pi
  957.     4404     940 78.6% 29-Aug-96 00:29:02 +inc-bin
  958.      297     194 34.6% 10-Jul-96 09:50:40 +inc-bin-pi
  959.    33933    4734 86.0% 27-Aug-96 22:46:50 +src
  960.      608     348 42.7% 14-Mar-96 14:15:02 +mkinstalldirs
  961.    15211    4871 67.9% 18-May-96 15:26:18 +getnetgrent.c
  962.     5085    2145 57.8% 13-Aug-96 20:14:20 +getttyent.c
  963.     4605    1997 56.6% 18-May-96 15:26:18 +linkaddr.c
  964.      979     484 50.5% 13-Aug-96 20:51:30 +Makefile.in
  965.    12368    4458 63.9% 18-May-96 15:26:20 +rcmd.c
  966.     9478    3591 62.1% 18-May-96 15:26:20 +res_comp.c
  967.    17248    5584 67.6% 18-May-96 15:26:22 +res_debug.c
  968.    11739    4106 65.0% 18-May-96 15:26:22 +res_init.c
  969.     7787    2814 63.8% 18-May-96 15:26:24 +res_mkquery.c
  970.    11111    4267 61.5% 18-May-96 15:26:24 +res_query.c
  971.    12748    4529 64.4% 18-May-96 15:26:26 +res_send.c
  972.     3685    1730 53.0% 13-Aug-96 20:14:20 +ttyname.c
  973.     2634    1322 49.8% 13-Aug-96 20:14:20 +ttyslot.c
  974.        0       0  0.0% 04-Sep-96 16:55:18 +
  975.    23696    9869 58.3% 18-Aug-96 02:59:36 +NEWS
  976.     2761    1437 47.9% 18-May-96 15:20:34 +PROBLEMS
  977.     1355     766 43.4% 13-Aug-96 20:47:32 +Product-Info
  978.    14161    6031 57.4% 18-Aug-96 02:59:38 +README
  979.     1004     484 51.7% 18-Aug-96 02:59:40 +REGISTRY
  980.      131      97 25.9% 08-May-96 23:38:32 +a4.h
  981.      467     207 55.6% 08-May-96 23:38:34 +glue.c
  982.      348     198 43.1% 13-Aug-96 20:51:36 +link_a5_0_f.c
  983.      413     210 49.1% 13-Aug-96 20:51:38 +link_a5_d0_f.c
  984.     1045     511 51.1% 13-Aug-96 20:51:34 +Makefile.in
  985.       34      34  0.0% 23-Dec-95 00:04:06 +stk_argbytes.c
  986.       19      19  0.0% 26-Jan-96 16:45:50 +stk_limit.c
  987.      252     144 42.8% 08-May-96 23:38:38 +stkchk_d0.c
  988.      385     209 45.7% 08-May-96 23:38:38 +sub_d0_sp.c
  989.      350     193 44.8% 18-May-96 15:26:30 +_err.c
  990.      146     119 18.4% 18-May-96 15:26:32 +_errx.c
  991.      146     119 18.4% 18-May-96 15:26:32 +_verr.c
  992.      148     121 18.2% 18-May-96 15:26:34 +_verrx.c
  993.      148     121 18.2% 13-Aug-96 20:13:10 +_vwarn.c
  994.      150     122 18.6% 13-Aug-96 20:13:10 +_vwarnx.c
  995.      146     120 17.8% 13-Aug-96 20:13:10 +_warn.c
  996.      148     121 18.2% 13-Aug-96 20:13:10 +_warnx.c
  997.     1493     772 48.2% 08-May-96 23:38:44 +asctime.c
  998.     2994    1406 53.0% 13-Aug-96 20:13:02 +cclass.h
  999.     3941    1813 53.9% 13-Aug-96 20:13:02 +cname.h
  1000.     2950    1394 52.7% 13-Aug-96 20:13:02 +COPYRIGHT
  1001.     2334    1191 48.9% 18-May-96 15:26:34 +ctermid.c
  1002.    28921    7923 72.6% 13-Aug-96 20:13:02 +engine.h
  1003.     4440    1533 65.4% 18-May-96 15:26:34 +err.c
  1004.       31      31  0.0% 23-Dec-95 00:04:04 +errlst.c
  1005.    27388    9607 64.9% 13-Aug-96 20:12:54 +fts.c
  1006.     3828    1767 53.8% 23-Dec-95 00:04:02 +getopt.c
  1007.    38806   11938 69.2% 08-May-96 23:38:44 +localtime.c
  1008.      978     497 49.1% 13-Aug-96 20:51:42 +Makefile.in
  1009.     4065    1889 53.5% 23-Dec-95 00:04:04 +popen.c
  1010.     5001    1701 65.9% 08-May-96 23:38:46 +private.h
  1011.     5887    1922 67.3% 24-Aug-96 09:29:08 +rand48.c
  1012.    42011   12678 69.8% 13-Aug-96 20:13:10 +regcomp.c
  1013.     5723    2417 57.7% 13-Aug-96 20:13:12 +regerror.c
  1014.     7460    3244 56.5% 13-Aug-96 20:13:12 +regex2.h
  1015.     6622    2675 59.6% 13-Aug-96 20:13:12 +regexec.c
  1016.     3040    1431 52.9% 13-Aug-96 20:13:12 +regfree.c
  1017.     4602    2105 54.2% 18-Aug-96 03:06:40 +scandir.c
  1018.       32      32  0.0% 23-Dec-95 00:04:06 +siglist.c
  1019.     2955    1368 53.7% 13-Aug-96 20:13:10 +signame.c
  1020.     2543    1278 49.7% 13-Aug-96 20:13:12 +utils.h
  1021.      669     332 50.3% 13-Aug-96 20:13:10 +vfork_setup_child.c
  1022.     2333    1186 49.1% 13-Aug-96 20:51:46 +clrerr.c
  1023.     2812    1415 49.6% 13-Aug-96 20:51:48 +fclose.c
  1024.     3267    1616 50.5% 13-Aug-96 20:51:48 +fdopen.c
  1025.     2374    1214 48.8% 13-Aug-96 20:51:50 +feof.c
  1026.     2388    1217 49.0% 13-Aug-96 20:51:52 +ferror.c
  1027.     3152    1593 49.4% 13-Aug-96 20:51:52 +fflush.c
  1028.     2315    1179 49.0% 13-Aug-96 20:51:56 +fgetc.c
  1029.     5014    2316 53.8% 13-Aug-96 20:14:30 +fgetln.c
  1030.     2362    1212 48.6% 13-Aug-96 20:51:58 +fgetpos.c
  1031.     3513    1728 50.8% 13-Aug-96 20:52:00 +fgets.c
  1032.     2388    1215 49.1% 13-Aug-96 20:52:04 +fileno.c
  1033.     5224    2254 56.8% 13-Aug-96 20:52:06 +findfp.c
  1034.     3098    1530 50.6% 13-Aug-96 20:52:06 +flags.c
  1035.     2271    1168 48.5% 13-Aug-96 20:14:38 +floatio.h
  1036.     3287    1641 50.0% 13-Aug-96 20:52:08 +fopen.c
  1037.     2611    1290 50.5% 13-Aug-96 20:52:10 +fprintf.c
  1038.     2661    1359 48.9% 13-Aug-96 20:52:12 +fpurge.c
  1039.     2335    1191 48.9% 13-Aug-96 20:52:12 +fputc.c
  1040.     2588    1316 49.1% 13-Aug-96 20:52:14 +fputs.c
  1041.     3128    1553 50.3% 13-Aug-96 20:52:16 +fread.c
  1042.     5190    2403 53.6% 13-Aug-96 20:52:16 +freopen.c
  1043.     2608    1291 50.4% 13-Aug-96 20:52:18 +fscanf.c
  1044.     6998    2997 57.1% 13-Aug-96 20:52:20 +fseek.c
  1045.     2402    1228 48.8% 13-Aug-96 20:14:50 +fsetpos.c
  1046.     3268    1615 50.5% 13-Aug-96 20:52:22 +ftell.c
  1047.     3053    1477 51.6% 13-Aug-96 20:52:24 +funopen.c
  1048.     5789    2474 57.2% 13-Aug-96 20:52:26 +fvwrite.c
  1049.     2360    1201 49.1% 13-Aug-96 20:14:56 +fvwrite.h
  1050.     2614    1326 49.2% 13-Aug-96 20:52:28 +fwalk.c
  1051.     2963    1503 49.2% 13-Aug-96 20:52:30 +fwrite.c
  1052.     2383    1218 48.8% 13-Aug-96 20:52:32 +getc.c
  1053.     2379    1208 49.2% 13-Aug-96 20:52:34 +getchar.c
  1054.     2567    1324 48.4% 13-Aug-96 20:52:36 +gets.c
  1055.     2359    1222 48.1% 13-Aug-96 20:52:38 +getw.c
  1056.     3308    1545 53.2% 13-Aug-96 20:15:04 +local.h
  1057.     4031    1884 53.2% 13-Aug-96 20:52:40 +makebuf.c
  1058.     1120     576 48.5% 13-Aug-96 20:51:44 +Makefile.in
  1059.     2623    1359 48.1% 13-Aug-96 20:14:20 +mktemp.c
  1060.     2911    1433 50.7% 13-Aug-96 20:52:40 +perror.c
  1061.     2548    1267 50.2% 13-Aug-96 20:52:42 +printf.c
  1062.     2397    1227 48.8% 13-Aug-96 20:52:44 +putc.c
  1063.     2420    1236 48.9% 13-Aug-96 20:52:46 +putchar.c
  1064.     2680    1357 49.3% 13-Aug-96 20:52:48 +puts.c
  1065.     2497    1274 48.9% 13-Aug-96 20:52:50 +putw.c
  1066.     3985    1882 52.7% 13-Aug-96 20:52:52 +refill.c
  1067.     2310    1178 49.0% 13-Aug-96 20:15:14 +remove.c
  1068.     2431    1247 48.7% 13-Aug-96 20:52:54 +rewind.c
  1069.     2502    1293 48.3% 13-Aug-96 20:52:56 +rget.c
  1070.     2581    1289 50.0% 13-Aug-96 20:52:58 +scanf.c
  1071.     2390    1217 49.0% 13-Aug-96 20:53:00 +setbuf.c
  1072.     2528    1281 49.3% 13-Aug-96 20:53:02 +setbuffer.c
  1073.     5063    2400 52.5% 13-Aug-96 20:53:04 +setvbuf.c
  1074.     2798    1400 49.9% 13-Aug-96 20:53:06 +snprintf.c
  1075.     2777    1383 50.1% 13-Aug-96 20:53:10 +sprintf.c
  1076.     2939    1447 50.7% 13-Aug-96 20:53:12 +sscanf.c
  1077.     3397    1588 53.2% 13-Aug-96 20:53:14 +stdio.c
  1078.     3110    1421 54.3% 13-Aug-96 20:53:16 +tempnam.c
  1079.     2996    1470 50.9% 13-Aug-96 20:53:18 +tmpfile.c
  1080.     2498    1277 48.8% 13-Aug-96 20:53:20 +tmpnam.c
  1081.     4642    2134 54.0% 13-Aug-96 20:53:20 +ungetc.c
  1082.    19053    7083 62.8% 13-Aug-96 20:53:22 +vfprintf.c
  1083.    18403    6187 66.3% 13-Aug-96 20:53:24 +vfscanf.c
  1084.     2368    1212 48.8% 13-Aug-96 20:53:26 +vprintf.c
  1085.     2393    1228 48.6% 13-Aug-96 20:53:28 +vscanf.c
  1086.     2581    1325 48.6% 13-Aug-96 20:53:28 +vsnprintf.c
  1087.     2552    1303 48.9% 13-Aug-96 20:53:30 +vsprintf.c
  1088.     2716    1380 49.1% 13-Aug-96 20:53:32 +vsscanf.c
  1089.     3607    1800 50.0% 13-Aug-96 20:53:34 +wbuf.c
  1090.     3317    1650 50.2% 13-Aug-96 20:53:36 +wsetup.c
  1091.      183     160 12.5% 08-May-96 23:40:16 +abort.c
  1092.     1282     717 44.0% 23-Dec-95 00:03:54 +abs.c
  1093.     2041    1074 47.3% 08-May-96 23:40:18 +atexit.c
  1094.     1408     789 43.9% 23-Dec-95 00:03:54 +atexit.h
  1095.     2183    1152 47.2% 13-Aug-96 20:54:04 +atof.c
  1096.     1295     750 42.0% 08-May-96 23:40:20 +atoi.c
  1097.     1291     748 42.0% 08-May-96 23:40:22 +atol.c
  1098.     2464    1256 49.0% 08-May-96 23:40:22 +bsearch.c
  1099.     1438     817 43.1% 08-May-96 23:40:24 +calloc.c
  1100.     1911    1061 44.4% 08-May-96 23:40:24 +div.c
  1101.     6218    2583 58.4% 08-May-96 23:40:26 +exec.c
  1102.    18720    7046 62.3% 18-Aug-96 03:07:22 +execve.c
  1103.     2884    1435 50.2% 08-May-96 23:40:28 +getenv.c
  1104.     4361    2196 49.6% 08-May-96 23:40:30 +heapsort.c
  1105.     1258     738 41.3% 08-May-96 23:40:30 +labs.c
  1106.     1682     920 45.3% 08-May-96 23:40:32 +ldiv.c
  1107.     1248     623 50.0% 13-Aug-96 20:54:02 +Makefile.in
  1108.     3170    1457 54.0% 13-Aug-96 20:11:22 +multibyte.c
  1109.     2305    1193 48.2% 08-May-96 23:40:32 +putenv.c
  1110.     6381    2780 56.4% 08-May-96 23:40:34 +qsort.c
  1111.     9010    3844 57.3% 18-May-96 15:26:42 +radixsort.c
  1112.     1350     779 42.2% 08-May-96 23:40:36 +rand.c
  1113.     3820    1782 53.3% 08-May-96 23:40:36 +setenv.c
  1114.     1111     639 42.4% 08-May-96 23:40:38 +ssystem.c
  1115.    48977   16274 66.7% 13-Aug-96 20:11:38 +strtod.c
  1116.     3587    1781 50.3% 08-May-96 23:40:38 +strtol.c
  1117.     4411    2136 51.5% 13-Aug-96 20:11:38 +strtoq.c
  1118.     2631    1309 50.2% 08-May-96 23:40:40 +strtoul.c
  1119.     3417    1663 51.3% 13-Aug-96 20:11:38 +strtouq.c
  1120.     2920    1477 49.4% 08-May-96 23:40:40 +system.c
  1121.     2638    1219 53.7% 23-Dec-95 00:03:56 +bcmp.c
  1122.     3448    1326 61.5% 23-Dec-95 00:03:56 +bcopy.c
  1123.     2287    1125 50.8% 23-Dec-95 00:03:56 +bzero.c
  1124.     1339     742 44.5% 23-Dec-95 00:03:56 +ffs.c
  1125.     1528     829 45.7% 13-Aug-96 20:11:38 +index.c
  1126.     1080     552 48.8% 13-Aug-96 20:54:10 +Makefile.in
  1127.     2271    1177 48.1% 23-Dec-95 00:03:56 +memccpy.c
  1128.     2335    1199 48.6% 23-Dec-95 00:03:56 +memchr.c
  1129.     2350    1219 48.1% 23-Dec-95 00:03:56 +memcmp.c
  1130.      334     221 33.8% 23-Dec-95 00:03:56 +memcpy.c
  1131.      152     108 28.9% 23-Dec-95 00:03:56 +memmove.c
  1132.     2271    1166 48.6% 23-Dec-95 00:03:56 +memset.c
  1133.     1535     837 45.4% 13-Aug-96 20:11:40 +rindex.c
  1134.     5186    2072 60.0% 23-Dec-95 00:03:56 +strcasecmp.c
  1135.     2140    1111 48.0% 23-Dec-95 00:03:56 +strcat.c
  1136.     1836     967 47.3% 23-Dec-95 00:03:56 +strcmp.c
  1137.     2300    1183 48.5% 23-Dec-95 00:03:58 +strcoll.c
  1138.     1429     783 45.2% 23-Dec-95 00:03:58 +strcpy.c
  1139.     2558    1322 48.3% 23-Dec-95 00:03:58 +strcspn.c
  1140.     2273    1173 48.3% 08-May-96 23:40:48 +strdup.c
  1141.     1636     896 45.2% 23-Dec-95 00:03:58 +strerror.c
  1142.     5990    2002 66.5% 08-May-96 23:40:50 +strftime.c
  1143.     1344     746 44.4% 13-Aug-96 20:11:40 +strlen.c
  1144.     3670    1475 59.8% 23-Dec-95 00:03:58 +strmode.c
  1145.     2525    1282 49.2% 23-Dec-95 00:03:58 +strncat.c
  1146.     2002    1035 48.3% 23-Dec-95 00:03:58 +strncmp.c
  1147.     1749     890 49.1% 23-Dec-95 00:03:58 +strncpy.c
  1148.     2331    1202 48.4% 23-Dec-95 00:03:58 +strpbrk.c
  1149.     2911    1442 50.4% 23-Dec-95 00:03:58 +strsep.c
  1150.     2381    1230 48.3% 23-Dec-95 00:03:58 +strspn.c
  1151.     2451    1243 49.2% 23-Dec-95 00:03:58 +strstr.c
  1152.     2990    1496 49.9% 08-May-96 23:40:52 +strtok.c
  1153.     2648    1337 49.5% 23-Dec-95 00:03:58 +strxfrm.c
  1154.     2466    1256 49.0% 23-Dec-95 00:03:58 +swab.c
  1155.     2058    1096 46.7% 18-Aug-96 02:59:42 +TODO
  1156.     1299     641 50.6% 24-Aug-96 09:29:20 +ChangeLog
  1157.     9690    2785 71.2% 18-Aug-96 03:07:54 +cli.c
  1158.    20993    6446 69.2% 08-May-96 23:40:58 +africa
  1159.      421     256 39.1% 23-Dec-95 00:03:16 +antarctica
  1160.    30475    9144 69.9% 08-May-96 23:41:00 +asia
  1161.    30615    9895 67.6% 08-May-96 23:41:02 +australasia
  1162.     2743    1065 61.1% 08-May-96 23:41:02 +backward
  1163.     1705     730 57.1% 08-May-96 23:41:04 +etcetera
  1164.    88164   25850 70.6% 08-May-96 23:41:06 +europe
  1165.      311     228 26.6% 23-Dec-95 00:03:16 +factory
  1166.     1433     551 61.5% 23-Dec-95 00:03:16 +leapseconds
  1167.    45822   13266 71.0% 08-May-96 23:41:08 +northamerica
  1168.     1117     631 43.5% 23-Dec-95 00:03:18 +pacificnew
  1169.    19221    3107 83.8% 23-Dec-95 00:03:18 +solar87
  1170.    19239    3047 84.1% 23-Dec-95 00:03:18 +solar88
  1171.    19515    3248 83.3% 08-May-96 23:41:10 +solar89
  1172.    15580    4906 68.5% 08-May-96 23:41:12 +southamerica
  1173.     1390     620 55.3% 23-Dec-95 00:03:18 +systemv
  1174.     8521    2575 69.7% 18-Aug-96 03:07:56 +functions.c
  1175.    22099    7471 66.1% 23-Dec-95 00:03:14 +getopt.c
  1176.     4438    1814 59.1% 23-Dec-95 00:03:14 +getopt.h
  1177.     4254    1718 59.6% 23-Dec-95 00:03:14 +getopt1.c
  1178.     1518     573 62.2% 23-Dec-95 00:03:14 +ialloc.c
  1179.    11585    4264 63.1% 26-Jan-96 16:46:00 +ixpipe-handler.c
  1180.     9735    3003 69.1% 13-Aug-96 20:54:20 +ixprefs.c
  1181.     6836    1339 80.4% 13-Aug-96 20:54:22 +ixprefs.gui
  1182.    24418    9029 63.0% 18-Aug-96 03:08:00 +ixprefs.guide
  1183.      504     263 47.8% 23-Dec-95 00:03:16 +ixprefs.guide.info
  1184.     4081     932 77.1% 13-Aug-96 20:54:24 +ixprefs.h
  1185.      617     386 37.4% 23-Dec-95 00:03:16 +ixprefs.info
  1186.     1741     689 60.4% 07-Jul-96 11:12:08 +ixrun.c
  1187.     7969    2762 65.3% 08-Jul-96 01:52:06 +ixtimezone.c
  1188.    12720    4223 66.8% 14-Aug-96 14:08:48 +ixtrace.c
  1189.    35265    6433 81.7% 14-Aug-96 14:08:54 +ixtrace.h
  1190.     4123    1653 59.9% 18-Aug-96 03:08:04 +main.c
  1191.     3292    1442 56.1% 18-Aug-96 03:07:54 +Makefile.in
  1192.      134     112 16.4% 23-Dec-95 00:03:14 +Mountlist
  1193.     1180     533 54.8% 23-Dec-95 00:03:14 +scheck.c
  1194.      509     211 58.5% 23-Dec-95 00:03:14 +yearistype.sh
  1195.    46387   13848 70.1% 23-Dec-95 00:03:14 +zic.c
  1196.      319     200 37.3% 24-Aug-96 09:29:32 +version.in
  1197. -------- ------- ----- --------- --------
  1198.  4881548 1962044 59.8% 11-Sep-96 14:00:16   1028 files
  1199.